@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
  --color-1: #111109;
  --color-2: #f3f0eb;
  --color-3: #dfe0c6;
  --color-4: #223019;
  --color-5: #22393f;
}
*{
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  text-decoration-color: var(--color-2);
  box-sizing: border-box;
}
html{
  font-size: 14pt;
  font-family: "acumin-pro", sans-serif;
  scroll-behavior: smooth;
}
header{
  height: 50px;
  background-color: var(--color-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  position: sticky;
  top: 0;
  z-index: 9999
}
.navbar ul{
  display: flex;
}
.navbar ul li a{
  display: block;
  color: var(--color-2);
  font-size: 16px;
  padding: 10px 25px;
}
.navbar ul li a:hover{
  opacity: 0.5;
}
.logo img{
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 22px;
  width: auto;
}
.brand img{
  height: 100%;
  padding: 0; 
  height: 22px;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-footer.active {
  opacity: 1;
}
.site-footer {
  width: 100%;
  opacity: 0;
  transition: .5s;
  transition-delay: .1s;
  background-color: var(--color-1);
  color: var(--color-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute; 
  bottom: 0; 
  left: 0; 
  z-index: 10;
}
.site-footer {
  transition: .5s;
}
.site-footer {
  font-size: 14px;
  align-content: center;
  
}
.footer-column{
  margin: 0px 20px 0px 20px;
  
}
.footer-column a{
  color: var(--color-2);
  margin-left: 10px;
  margin-right: 10px;
}
.footer-column a:hover{
  opacity: 0.5;
}
.page-container {
  position: relative;
  min-height: 100vh;
}

.content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

.site-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
  z-index: 9999;
}

@media only screen and (max-width: 768px){
  .site-footer {
    margin-top: 10px;            /* Footer height */
  }
  .logo{
    display: none;
  }
  .brand{
    padding: 0px;
  }
  .brand img{
    height: 100%;
    padding: 0; 
    height: 22px;
    width: auto;
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translate(-50%, -50%);
  }
  header{
    height: 50px;
    background-color: var(--color-1);
    display: block;
    justify-content: space-between;
    padding: 0px;
    margin: 0px
  }
  .hamburger{
    margin-top: auto;
    display: inline-block;
    cursor: pointer;
    padding: 0px 20px;
    padding-top: 10px;
  }
  .hamburger .line{
    width: 22px;
    height: 2px;
    background: var(--color-2);
    margin: 6px 0;
  }
  .navbar{
    height: 0;
    top: 60px;
    left: 0;
    right: 0;
    width: 100vw;
    background: var(--color-1);
    transition: 0.2s;
    overflow: hidden;
  }
  .navbar.active {
    height: 165px;
  }
  .navbar.active ul {
    
    opacity: 1;
  }
  .navbar ul{
    display: block;
    width: fit-content;
    text-align: center;
    margin: auto;
    transition: 0.5s;
  }
  .navbar ul li a{
    margin-top: 5px;
    font-size: 16px;
  }

  
}